home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
umich
/
telecomm
/
figlet21.lzh
/
FIGLET_2.11
/
SHOWFIG.SH
< prev
Wrap
Text File
|
1994-09-10
|
246b
|
18 lines
#!sh
# Prints out a list of available Figlet fonts
# in both ASCII and the font itself.
pushd $FIGLETFONTS
echo "Figlet fonts:"
for f in *.flf
do
echo $f :
echo $f | figlet -f $f
done
echo "Control files:"
for f in *.flc
do
echo $f
done
popd